home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr35 / guestppe.zip / GUEST.PPE (.txt) < prev    next >
PCBoard Programming Language Executable  |  1993-07-01  |  1KB  |  94 lines

  1. ;------------------------------------------------------------------------------
  2. ;                                                   .ss.
  3. ;                                                   `²²'
  4. ;             .,sS$Ss,,s$  .,sS$$$Ss.  .,sS$Ss,,s$ .ss.  .sSs.
  5. ;           .d$$²^°²$$$$'.d$P²°^^²$P'.d$$²^°²$$$$'.$$$' .$$$²Sb,.
  6. ;           $$$'   .$$$' $$$²Sçsµ²' .$$$'   .$$$'.$$$' .$$$'  `$$b.
  7. ;           $$$b,,d$$$' ,$$$b,....,s$$$$b,,d$$$'.$$$;.,$$$'    ;$$$
  8. ;           `²S$$S²²S$$S²°²S$$$$S²°°²S$$$$$$',$$S²°²S$S'.sS$$$P²'
  9. ;                                    .sS²°$$$²²°"'       d²°'
  10. ;                                  .$$²  .$$'
  11. ;                                  $$$.,d$$'
  12. ;                                  `²S$$S²'
  13. ;------------------------------------------------------------------------------
  14. ; P.P.L.X. 2.OO                          (C)1996 - Lone Runner / AEGiS CoRP'96 
  15. ;------------------------------------------------------------------------------
  16. ; PPE 1.OO (plain) - Analysis ON - Postprocessing ON
  17. ;------------------------------------------------------------------------------
  18.  
  19.     String   STRING001
  20.     String   STRING002
  21.     String   STRING003
  22.  
  23. ;------------------------------------------------------------------------------
  24.  
  25.     :LABEL001
  26.     STRING001 = ""
  27.     STRING002 = ""
  28.     STRING003 = ""
  29.     Cls
  30.     PrintLn 
  31.     PrintLn "@X00@X4F  Please enter your REAL name and where you are calling from.  @X07"
  32.     PrintLn 
  33.     :LABEL002
  34.     PrintLn 
  35.     InputText "@X0BYour REAL name (First and Last):  @X02", STRING002, 14, 25
  36.     PrintLn 
  37.     If (STRING002 == "") Goto LABEL002
  38.     PrintLn 
  39.     :LABEL003
  40.     InputText "@X0BWhere are you calling from?  @X02", STRING003, 14, 40
  41.     PrintLn 
  42.     If (STRING003 == "") Goto LABEL003
  43.     PrintLn 
  44.     InputYN "@X04Is the above information correct? @X0E", STRING001, 14
  45.     If (STRING001 <> YesChar()) Goto LABEL001
  46.     PrintLn 
  47.     PrintLn 
  48.     PrintLn "@X8FThank You!@XFF"
  49.     PrintLn 
  50.     Log "Caller's City: " + STRING003, 0
  51.     Log "Caller's Real Name: " + STRING002, 0
  52.     More
  53.  
  54. ;------------------------------------------------------------------------------
  55. ;
  56. ; Usage report (before postprocessing)
  57. ;
  58. ; ■ Statements used :
  59. ;
  60. ;    1       Cls
  61. ;    1       More
  62. ;    3       Goto 
  63. ;    3       Let 
  64. ;    12      PrintLn 
  65. ;    3       If 
  66. ;    2       Log 
  67. ;    1       InputYN 
  68. ;    2       InputText 
  69. ;
  70. ;
  71. ; ■ Functions used :
  72. ;
  73. ;    2       +
  74. ;    2       ==
  75. ;    1       <>
  76. ;    1       YesChar()
  77. ;
  78. ;------------------------------------------------------------------------------
  79. ;
  80. ; Analysis flags : No flag
  81. ;
  82. ;------------------------------------------------------------------------------
  83. ;
  84. ; Postprocessing report
  85. ;
  86. ;    0       For/Next
  87. ;    0       While/EndWhile
  88. ;    0       If/Then or If/Then/Else
  89. ;    0       Select Case
  90. ;
  91. ;------------------------------------------------------------------------------
  92. ;                 AEGiS Corp - Break the routines, code against the machines!
  93. ;------------------------------------------------------------------------------
  94.